home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Edytory i konwertery filmow / MediaCoder 0.5.1 pre12 / MediaCoder-0.5.1-pre12.exe / htdocs / load / helper.js next >
Text File  |  2006-10-21  |  512b  |  20 lines

  1. var url = document.location.href;
  2. var launched = false;
  3.  
  4. function GetToken(str, token)
  5. {
  6.     var idx = str.indexOf(token + '=');
  7.     if (idx <= 0) return null;
  8.     var argstr = str.substring(idx + token.length + 1);
  9.     idx = argstr.indexOf('&');
  10.     return idx >=0 ? argstr.substring(0, idx) : argstr;
  11. }
  12.  
  13. function launch()
  14. {
  15.     if (!launched) {
  16.         window.open("/setup/savedata?launch=1&url=/load/loading.htm", null, "width=200,height=80,resizable=yes,toolbar=no,status=no,menubar=no");
  17.         launched = true;
  18.     }
  19. }
  20.